home *** CD-ROM | disk | FTP | other *** search
Text File | 1987-10-01 | 570 b | 37 lines | [TEXT/ttxt] |
- {This template is for use with Turbo Pascal}
-
- program myprogram;
-
- { change the name accordingly }
-
- {$R-}
- {$U-}
- {$D 4DEX}
-
- USES Memtypes;
-
- {Inlude any other uses files that you need}
-
- PROCEDURE myproc(paramPtr: XCmdPtr);
-
- { this is the procedure that will be executed.}
-
- {Be sure that all variables to be used are declared within this procedure.}
- {Declare within this procedure any Funtions or Procedures which you will call}
-
- Begin
-
- {insert your code here}
-
- End;
-
-
- {You need this begin and end statement so that Turbo will compile the code.}
-
- Begin
- End.
-
-
-
-
-